home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d20 / lstcrc14.arc / LC.BAT next >
DOS Batch File  |  1991-09-11  |  800b  |  36 lines

  1. @echo off
  2. rem
  3. rem     This quick and dirty batch file was used to verify
  4. rem     the errorlevel return logic. You don't have to use
  5. rem     it for anything at all, but as long as I made
  6. rem     it, I figured I might as well throw it in.
  7. rem
  8.  
  9. listcrcs %1
  10. if errorlevel 4 goto badnews
  11. if errorlevel 3 goto nofile
  12. if errorlevel 2 goto noareas
  13. if errorlevel 1 goto match
  14.  
  15. echo ErrorLevel was 0
  16. echo Normal termination! All is well...
  17. goto end
  18.  
  19. :badnews
  20. echo ErrorLevel was 4 or more -} This should have NEVER happened... Aaargh!
  21. goto end
  22.  
  23. :nofile
  24. echo ErrorLevel was 3 -} File AREAS.BBS not found
  25. goto end
  26.  
  27. :noareas
  28. echo ErrorLevel was 2 -} Not a single area found in file AREAS.BBS
  29. goto end
  30.  
  31. :match
  32. echo ErrorLevel was 1 -} A CRC collision was detected
  33. goto end
  34.  
  35. :end
  36.